From: Richard M. Stallman Date: Tue, 7 Jun 1994 18:02:08 +0000 (+0000) Subject: (standard-display-european): Treat 0 arg like negative. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~91232 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c3a14a2bcf428118c788eddc0387f3879c47acb2;p=emacs.git (standard-display-european): Treat 0 arg like negative. --- diff --git a/lisp/disp-table.el b/lisp/disp-table.el index 62af3c2d070..5dd76dd4f4b 100644 --- a/lisp/disp-table.el +++ b/lisp/disp-table.el @@ -152,7 +152,7 @@ When enabled, characters in the range of 160 to 255 display not as octal escapes, but as accented characters. With prefix argument, enable European character display iff arg is positive." (interactive "P") - (if (or (< (prefix-numeric-value arg) 0) + (if (or (<= (prefix-numeric-value arg) 0) (and (null arg) (vectorp standard-display-table) (>= (length standard-display-table) 161)